home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 2 / AACD 2.iso / AACD / Programming / MUI / muitoolkit / developer / C / include / libraries / muitoolkitbase.h < prev   
Encoding:
C/C++ Source or Header  |  1999-09-18  |  698 b   |  30 lines

  1. /*
  2. **      $VER: muitoolkitbase.h 1.00 (07.09.99)
  3. **
  4. **      definition of MuiToolkitBase
  5. **
  6. **      (C) Copyright 1999 Marcin Orlowski
  7. **      All Rights Reserved.
  8. */
  9.  
  10. #ifndef MUITOOLKIT_MUITOOLKITBASE_H
  11. #define MUITOOLKIT_MUITOOLKITBASE_H
  12.  
  13. #ifndef  EXEC_LIBRARIES
  14. #include <exec/libraries.h>
  15. #endif /* EXEC_LIBRARIES_H */
  16.  
  17. struct MuiToolkitBase
  18. {
  19.  struct Library         mt_LibNode;
  20.  struct SegList        *mt_SegList;
  21.  struct ExecBase       *mt_SysBase;
  22.  struct IntuitionBase  *mt_IntuitionBase;
  23.  struct GfxBase        *mt_GfxBase;
  24.  struct UtilityBase    *mt_UtilityBase;
  25.  struct Library        *mt_MUIMasterBase;
  26.  struct DosLibrary     *mt_DOSBase;
  27. };
  28.  
  29. #endif /* MUITOOLKIT_MUITOOLKITBASE_H */
  30.